home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / vtdevel3.lha / Include / graphics / gfx.i < prev    next >
Text File  |  1992-09-24  |  1KB  |  64 lines

  1.     IFND    GRAPHICS_GFX_I
  2. GRAPHICS_GFX_I    SET    1
  3. **
  4. **    $VER: gfx.i 39.3 (20.02.92)
  5. **    Includes Release 39.108
  6. **
  7. **
  8. **
  9. **    (C) Copyright 1985-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. **
  12.  
  13.     IFND    EXEC_TYPES_I
  14.     include 'exec/types.i'
  15.     ENDC
  16.  
  17. BITSET        equ $8000
  18. BITCLR        equ 0
  19. AGNUS        equ 1
  20. DENISE        equ 1
  21.  
  22.     STRUCTURE    BitMap,0
  23.     WORD    bm_BytesPerRow
  24.     WORD    bm_Rows
  25.     BYTE    bm_Flags
  26.     BYTE    bm_Depth
  27.     WORD    bm_Pad
  28.     STRUCT  bm_Planes,8*4
  29.     LABEL   bm_SIZEOF
  30.  
  31.    STRUCTURE   Rectangle,0
  32.       WORD  ra_MinX
  33.       WORD  ra_MinY
  34.       WORD  ra_MaxX
  35.       WORD  ra_MaxY
  36.    LABEL    ra_SIZEOF
  37.  
  38.    STRUCTURE   Rect32,0
  39.       LONG  r32_MinX
  40.       LONG  r32_MinY
  41.       LONG  r32_MaxX
  42.       LONG  r32_MaxY
  43.    LABEL    r32_SIZEOF
  44.  
  45.    STRUCTURE   tPoint,0
  46.       WORD  tpt_x
  47.       WORD  tpt_y
  48.    LABEL    tpt_SIZEOF
  49.  
  50.     BITDEF  BM,CLEAR,0
  51.     BITDEF  BM,DISPLAYABLE,1
  52.     BITDEF    BM,INTERLEAVED,2
  53.     BITDEF    BM,STANDARD,3
  54.     BITDEF    BM,MINPLANES,4
  55.  
  56.  
  57.  
  58. BMA_HEIGHT    equ    0
  59. BMA_DEPTH    equ    4
  60. BMA_WIDTH    equ    8
  61. BMA_FLAGS    equ    12
  62.  
  63.     ENDC    ; GRAPHICS_GFX_I
  64.